home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 September / september_2000.iso / intercd / root / ^Linux / cdrtools-1.10 / cdrecord / wm_session.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-10-08  |  1.4 KB  |  45 lines

  1. /* @(#)wm_session.c    1.2 98/10/08 Copyright 1995, 1997 J. Schilling */
  2. #ifndef lint
  3. static    char sccsid[] =
  4.     "@(#)wm_session.c    1.2 98/10/08 Copyright 1995, 1997 J. Schilling";
  5. #endif
  6. /*
  7.  *    CDR write method abtraction layer
  8.  *    session at once / disk at once writing intercace routines
  9.  *
  10.  *    Copyright (c) 1995, 1997 J. Schilling
  11.  */
  12. /*
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2, or (at your option)
  16.  * any later version.
  17.  *
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  *
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; see the file COPYING.  If not, write to
  25.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  26.  */
  27.  
  28. #include <mconfig.h>
  29. #include <stdio.h>
  30. #include <standard.h>
  31. #include <stdxlib.h>
  32. #include <unixstd.h>
  33. #include <sys/types.h>
  34. #include <utypes.h>
  35.  
  36. #include "cdrecord.h"
  37.  
  38. extern    int    debug;
  39. extern    int    verbose;
  40. extern    int    lverbose;
  41.  
  42. extern    char    *buf;            /* The transfer buffer */
  43.  
  44. EXPORT    int    write_session_data __PR((cdr_t *dp, int track, track_t *trackp));
  45.